Is fileExists function not supported by DOORS 9.2. Is there any alternative function for fileExists in DOORS 9.2. |
Re: Is fileExists function not supported by DOORS 9.2?
I always use the canOpenFile-function to do this checking, like this:
string fileName = "d:\\nonExistingFile.txt"
if (!canOpenFile(fileName, false))
{
errorBox "cannot open file '" fileName "'\n"
halt
}
else
{
infoBox "can open file '" fileName "'\n"
}
|
Re: Is fileExists function not supported by DOORS 9.2? |
Re: Is fileExists function not supported by DOORS 9.2? Thanks FZ |